Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 2 of 4) 113 Result(s) found 

 

Create a better InStr function with VBScript regular expressions
Total Hit (14971) Regular expressions offer an extremely powerful way to search and replace text inside a string using sophisticated search criteria, far behind the capabilities of VB's InStr and Replace functions. For example, you can search for whole words, or find a match with a range of characters (for example, a ....Read More
Rating
TrimEx function using Regular Expression.
Total Hit (3166) Regular Trim function only removes preceding and trailing space but it does not remove all other white space characters e.g. New Line(\n), Carraige return(\r), Form Feed(\f), Tab(\t). To remove these characters you can easily implement function using Regular expression. ....Read More
Rating
Regex Coach - A Visual Application to analyze/test/debug your Regular expression
Total Hit (1987) The Regex Coach is a graphical application for Linux and Windows which can be used to experiment with (Perl-compatible) regular expressions interactively. Download link >> http://weitz.de/files/regex-coach.exe
Rating
Test your Search and replace Regular Expression
Total Hit (2672) Test your Regular expression and also test Search and replace with regular expression «b»«a href='../tools/RegTester.aspx'»Click here to see Live Demo...«/a»«/b» «code LangId=2»<%@ Page Language="VB" Debug="true" %> <%@ import Namespace="System.Data.SqlClient" %> <script runat="server"> ....Read More
Rating
IsValidRegularExpression - Checking whether a given regular expression is in valid format
Total Hit (3434) «Code LangId=2» ' Check whether a given regular expression is in valid format ' Examples: ' Debug.WriteLine(IsValidRegularExpression("^((\(\d{3}\) ' ?)|(\d{3}-))?\d{3}-\d{4}$")) ' => True ' Debug.WriteLine(IsValidRegularExpression("^[|)$")) ' => False Function IsValidRegularExpression( ....Read More
Rating
HTML Color Coding for various Languages (i.e. VB, VB.net, SQL).
Total Hit (10639) I spent several hours to find some article to convert Source Code into HTML with different colorcode for keywords/literal/comment/function. But no luck and finally I wrote my own ColorCoding Engine. This article will show you how you can utilize power of Regular Expression to solve your very complex ....Read More
Rating
Extract all quoted strings with the RegExp object
Total Hit (3622) When parsing a text file that contains quoted strings - such as a VB source file - you might want to quickly locate and extract all the quoted strings. Thanks to regular expressions and the RegExp object in the Microsoft VBScript Regular Expression type library, this task is surprisingly easy: «co ....Read More
Rating
GetWordOccurrences - Number of occurrences of each word in a string
Total Hit (3426) «Code LangId=1»' Analyze a source string and return a bidimensional array that contains ' all the words the string contains and the number of occurrences of each ' ' Example of usage: ' Dim arr() as Variant ' arr = GetWordsOccurrences(txtSource.Text) ' For i = 1 To UBound(arr, 2) ....Read More
Rating
Automatically hyperlink URLs in ASP.NET Pages
Total Hit (9776) Suppose that your ASP.NET pages display contents read from database fields. Suppose also that some of those fields may contain URLs or email addresses. A typical example is when you display user information such as the email address or the personal Web site. By using regular expressions, you can aut ....Read More
Rating
This is a link to a different site Stripping HTML Tags using Regular Expressions
Total Hit (1870) Have you ever wanted to strip all of the HTML tags from a string? There are many reasons you may want to do this. For example, if you provide a feature on your site where a user can have the contents of a Web page emailed to them, you may wish to strip all of the HTML tags from the particular articl ....Read More
Rating
This is a link to a different site Translating from a Custom Markup to HTML using Regular Expressions
Total Hit (1825) If you run a messageboard-type site, you may want to allow users to enter certain HTML tags, but not others. For example, you may want users to be able to use tags like <b> and <u>, but any other HTML tags would be displayed as-is. That is, if a user were to enter as a message: ....Read More
Rating
This is a link to a different site An Introduction to Regular Expressions and Their Use in .NET II...
Total Hit (1545) In the first article in this series we introduced background information regarding regular expressions as well as starting to look at the support for regular expressions in .NET. In this article we'll look in more detail at this latter area.
Rating
This is a link to a different site Removing All HTML Tags from a String Using Regular Expressions
Total Hit (1779) Have you ever had the need to remove all HTML tags from a file? Perhaps you wanted to display all HTML tags on a Web page, but as the raw HTML tags (like showing <B>bold</B> as opposed to bold). The script presented in this artcle will accomplish these tasks with ease! ....Read More
Rating
This is a link to a different site How Do I...Use common Regular Expressions?
Total Hit (743) «b»Social Security Number «/b» \d{3}-\d{2}-\d{4} «b»US Phone Number«/b» ((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4} «b»US Postal Code«/b» \d{5}(-\d{4})? «b»Internet EMail Address«/b» [\w-]+@([\w-]+\.)+[\w-]+ «b»Internet URL «/b» http://([\w-]\.)+[\w-](/[\w- ./?%=]*)? «b ....Read More
Rating
This is a link to a different site Regular expressions to validate Numbers
Total Hit (854) This all are the common regular expressions to validate Integer Numbers, Decimal Numbers, Money Amount and many more...
Rating
This is a link to a different site Regular expressions to validate IP Address, NUmbers, Strings, Filename, Roman Numbers and many more....
Total Hit (1068) This all are the common regular expressions to validate IP Address, NUmbers, Strings, Filename, Roman Numbers and many more....
Rating
This is a link to a different site How to upload your files in ASP.Net
Total Hit (843) This article explains how to upload files using ASP.Net with example
Rating
This is a link to a different site ASP.NET Validators Unclouded
Total Hit (2755) Demistifying the mysterious ASP.NET validator controls, allowing fast and painless validation of Web Forms.
Rating
This is a link to a different site Writing Object-Oriented JavaScript Part 3
Total Hit (803) Using Cfx to develop a JavaScript control class library.
Rating
This is a link to a different site How Do I...Use Regular Expressions to match a pattern?
Total Hit (764) Regular Expressions allow for easy parsing and matching of strings to a specific pattern. Using the objects available in the RegularExpressions namespace, it is possible to compare a string against a given pattern, replace a string pattern with another string, or to retrieve only portions of a forma ....Read More
Rating
This is a link to a different site DHTML Clock Control
Total Hit (993) Digital DHTML clock that displays a .NET DateTimeFormatInfo Format Pattern.
Rating
This is a link to a different site Creating packages in code - Flat File Source to OLE-DB Destination (SQL Server)
Total Hit (4753) This code sample programmatically creates a package that imports a text file into SQL Server, with a Flat File Source and the OLE-DB Destination. This shows how you can leverage the SSIS engine to write your own data import tool for example, but beware importing files is not as simple as it may seem ....Read More
Rating
This is a link to a different site Real Time syntax highlighting [wrapper class]
Total Hit (2579) Hello again. This time I wanted to bring you something that was really challenging for me to build. I must have tried at least four totally different solutions to this problem consuming literally days of my time until I reached the best one. At the request of our beloved staff, I will attempt to exp ....Read More
Rating
This is a link to a different site An Extensive Examination of Web Services Index : Part-1
Total Hit (1756) Examines the basics of Web services, what Web services are, and the technologies and standards that serve as the underpinnings of Web services.
Rating
This is a link to a different site ASP Configuration Files
Total Hit (796) ASP.NET/ IIS applications use an optional XML-based configuration file named web.config, to maintain application configuration settings. This extends and/ or changes any settings in the system wide configuration file, machine.config.
Rating
This is a link to a different site Arrays and Lists in SQL Server
Total Hit (771) In the public forums for SQL Server, you often see people asking How do I use arrays in SQL Server? Or Why does SELECT * FROM tbl WHERE col IN (@list) not work? This text describes several methods to do this, both good and bad ones. I also present data from performance tests of the various methods. ....Read More
Rating
This is a link to a different site SQL Server 2000 FullText Search Service: How to set up and Query with Indexing Service
Total Hit (1134) If you have a discussion forum or other database - enabled service on your site that accumulates significant amounts of textual data, and you want to provide users with a powerful way to search this content based on words or sentences, then the SQL Server Fulltext query engine could be just the thin ....Read More
Rating
This is a link to a different site Best Practices for Business Intelligence Using the Microsoft Data Warehousing Framework
Total Hit (840)
Rating
This is a link to a different site The Curse and Blessings of Dynamic SQL
Total Hit (765) In this article I will discuss the of use dynamic SQL in stored procedures in MS SQL Server, and I will show that this is a powerful feature that you should use with care.
Rating
This is a link to a different site Cubes in the Real World
Total Hit (1715) Microsoft® SQL Server™ 2000 Analysis Services offers myriad options for creating cubes, and the flexibility and power to support almost any business case. This chapter presents practical guidelines for designing cubes and dimensions, design fundamentals, and other considerations ....Read More
Rating


(Page 2 of 4) 113 Result(s) found  1 2 3 4

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.